home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1997 #1 / Amiga Plus CD - 1997 - No. 01.iso / pd / programmierung / mesa-1.2.8 / widgets / src / makefile.in < prev    next >
Makefile  |  1996-05-27  |  4KB  |  128 lines

  1. # Makefile.in --- Mesa GL Widget for X11 Toolkit Programming
  2. # Copyright (C) 1995 by
  3. #   Jeroen van der Zijp <jvz@cyberia.cfdrc.com>
  4. #   Thorsten Ohl <Thorsten.Ohl@Physik.TH-Darmstadt.de>
  5. #
  6. # This library is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU Library General Public
  8. # License as published by the Free Software Foundation; either
  9. # version 2 of the License, or (at your option) any later version.
  10. #
  11. # This library is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. # GNU Library General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Library General Public
  17. # License along with this library; if not, write to the Free Software
  18. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. #
  20. # $Id: Makefile.in,v 1.10 1995/04/22 15:29:55 ohl Exp $
  21. #
  22. ########################################################################
  23.  
  24. CFLAGS = -O
  25. LDFLAGS =
  26.  
  27. ########################################################################
  28. # autoconf(1):
  29. ########################################################################
  30.  
  31. SHELL = /bin/sh
  32.  
  33. srcdir = @srcdir@
  34. top_srcdir = @top_srcdir@
  35. mesa_srcdir = @mesa_srcdir@
  36. VPATH = @srcdir@
  37.  
  38. prefix = @prefix@
  39. exec_prefix = @exec_prefix@
  40. binprefix =
  41. manprefix =
  42.  
  43. bindir = $(exec_prefix)/bin
  44. libdir = $(prefix)/lib
  45. srcincdir = $(top_srcdir)/include/GL
  46.  
  47. CC = @CC@
  48. CPP = @CPP@
  49.  
  50. CPPFLAGS = @CPPFLAGS@ -I$(mesa_srcdir)/include -I$(top_srcdir)/include
  51. DEFS = @DEFS@
  52.  
  53. SYS_CFLAGS = @SYS_CFLAGS@
  54. X_CFLAGS = @X_CFLAGS@
  55.  
  56. ARFLAGS = @ARFLAGS@
  57. RANLIB = @RANLIB@
  58. INSTALL = @INSTALL@
  59. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  60. INSTALL_DATA = @INSTALL_DATA@
  61.  
  62. MOTIFOBJ = @MOTIFOBJ@
  63.  
  64. ########################################################################
  65. # No user serviceable parts below!
  66. ########################################################################
  67.  
  68. ALL_CFLAGS = $(DEFS) $(SYS_CFLAGS) $(X_CFLAGS) $(CFLAGS)
  69. OBJS = GLwDrawingArea.o MesaDrawingArea.o MesaWorkstation.o \
  70.        GLwDrawingAreaMakeCurrent.o GLwDrawingAreaSwapBuffers.o \
  71.        GLwMakeCurrent.o \
  72.        $(MOTIFOBJ) 
  73.  
  74. .SUFFIXES:
  75. .SUFFIXES: .c .o
  76.  
  77. .c.o:
  78.     $(CC) $(CPPFLAGS) $(ALL_CFLAGS) -c $<
  79.  
  80. all: libMesaGLw.a
  81.  
  82. libMesaGLw.a: $(OBJS)
  83.     ar $(ARFLAGS) $@ $(OBJS)
  84.     -$(RANLIB) $@
  85.  
  86. install: all
  87.     $(INSTALL_DATA) libMesaGLw.a $(libdir)
  88.  
  89. uninstall:
  90.     rm -f $(libdir)/libMesaGLw.a
  91.  
  92. GLwDrawingArea.o: \
  93.   $(srcincdir)/GLwDrawA.h $(srcincdir)/GLwDrawAP.h 
  94.  
  95. GLwMDrawingArea.o GLwCreateMDrawingArea.c: \
  96.   $(srcincdir)/GLwDrawA.h $(srcincdir)/GLwDrawAP.h \
  97.   $(srcincdir)/GLwMDrawA.h $(srcincdir)/GLwMDrawAP.h
  98.  
  99. MesaDrawingArea.o GLwMakeCurrent.o: \
  100.   $(srcincdir)/GLwDrawA.h $(srcincdir)/GLwDrawAP.h \
  101.   $(srcincdir)/MesaDrawingArea.h $(srcincdir)/MesaDrawingAreaP.h 
  102.  
  103. MesaWorkstation.o: \
  104.   $(srcincdir)/GLwDrawA.h $(srcincdir)/GLwDrawAP.h \
  105.   $(srcincdir)/MesaWorkstation.h $(srcincdir)/MesaWorkstationP.h \
  106.   $(srcincdir)/MesaDrawingArea.h $(srcincdir)/MesaDrawingAreaP.h 
  107.  
  108. # Standard GNU clean* targets:
  109. maintainer-clean: clean
  110.     @echo "This command is intended for maintainers to use;"
  111.     @echo "it deletes files that may require special tools to rebuild."
  112.  
  113. mostlyclean: clean
  114.  
  115. distclean: clean
  116.     rm -f Makefile config.cache
  117.  
  118. clean:
  119.     rm -f libMesaGLw.a *.o .*~ *~
  120.  
  121. # Additional clean* targets:
  122. realclean: distclean
  123.     rm -f configure
  124.  
  125. # GNU autoconf(1) targets:
  126. Makefile: Makefile.in $(top_srcdir)/config.status
  127.     cd $(top_srcdir); $(SHELL) config.status
  128.